Contents | Index | < Browse | Browse >
LETTERisgraphULETTER
Tests for graphic characters.
Overview
#include <ctype.h>
b = isgraph(ch);
int ch;
Portability
ANSI
Description
This function tests if the character passed is a visible one. This includes all
characters rendering something on the screen, but not the Whitespace (ASCII
code 32).
Returns
0 if the character is not visible, otherwise a value <>0.
See also